home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Over 1,000 Windows 95 Programs
/
Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso
/
1470
/
busy.frm
(
.txt
)
< prev
next >
Wrap
Visual Basic Form
|
1996-05-26
|
2KB
|
50 lines
VERSION 4.00
Begin VB.Form frmBusy
BorderStyle = 3 'Fixed Dialog
ClientHeight = 675
ClientLeft = 825
ClientTop = 1575
ClientWidth = 3270
ControlBox = 0 'False
Height = 1080
Icon = "Busy.frx":0000
Left = 765
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
MousePointer = 11 'Hourglass
ScaleHeight = 675
ScaleWidth = 3270
ShowInTaskbar = 0 'False
Top = 1230
Width = 3390
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "Loading screen fonts..."
BeginProperty Font
name = "MS Sans Serif"
charset = 0
weight = 700
size = 12
underline = 0 'False
italic = 0 'False
strikethrough = 0 'False
EndProperty
Height = 300
Left = 240
TabIndex = 0
Top = 180
Width = 2775
End
Attribute VB_Name = "frmBusy"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Screen.MousePointer = vbHourglass
End Sub
Private Sub Form_Unload(Cancel As Integer)
Screen.MousePointer = vbDefault
End Sub